home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-06-30 | 1.3 KB | 60 lines | [04] ASCII Text (0x0000) |
- ; File: E16.Menu
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- mDrawMsg GEQU $0000
- mChooseMsg GEQU $0001
- mSizeMsg GEQU $0002
- mDrawTitle GEQU $0003
- mDrawMItem GEQU $0004
- mGetMItemID GEQU $0005
- menuRefPtr GEQU $0000
- mRefHandle GEQU $4000
- mRefResource GEQU $8000
- menuAllowCache GEQU $0008
- menuCustom GEQU $0010
- menuXOR GEQU $0020
- menuDisabled GEQU $0080
- menuAlwaysCallMChoose GEQU $0100
- itemBold GEQU $0001
- itemItalic GEQU $0002
- itemUnderline GEQU $0004
- itemXOR GEQU $0020
- itemDivider GEQU $0040
- itemDisabled GEQU $0080
- itemOutline GEQU $0800
- itemShadow GEQU $1000
- mInvis GEQU $0004
- mCustom GEQU $0010
- mXor GEQU $0020
- mSelected GEQU $0040
- mDisabled GEQU $0080
- menuCacheMask GEQU $0008
- customMenu GEQU $0010
- xorMItemHilite GEQU $0020
- xorTitleHilite GEQU $0020
- underMItem GEQU $0040
- disableItem GEQU $0080
- disableMenu GEQU $0080
- enableItem GEQU $FF7F
- enableMenu GEQU $FF7F
- noUnderMItem GEQU $FFBF
- colorMItemHilite GEQU $FFDF
- colorTitleHilite GEQU $FFDF
- colorReplace GEQU $FFDF
- standardMenu GEQU $FFEF
- type2 GEQU $0040
- ; offset constants for MenuRec
- omenuID GEQU 0 ; Menu's ID number
- omenuWidth GEQU 2 ; Width of menu
- omenuHeight GEQU 4 ; Height of menu
- omenuProc GEQU 6 ; Menu's definition procedure
- omenuFlag GEQU 10 ; Bit flags
- onumOfItems GEQU 12
- otitleWidth GEQU 14 ; Width of menu's title
- otitleName GEQU 16
- omenuCache GEQU 20
-